home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Found / FWString / FWCharac.h < prev    next >
Encoding:
Text File  |  1996-09-17  |  796 b   |  32 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWCharac.h
  4. ///    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWCHARAC_H
  11. #define FWCHARAC_H
  12.  
  13. #ifndef FWSTDDEF_H
  14. #include "FWStdDef.h"
  15. #endif
  16.  
  17. //========================================================================================
  18. // ----- Constants -----
  19. //========================================================================================
  20.     
  21. enum {FW_kNulCharacter=0};
  22.  
  23. #ifdef FW_BUILD_MAC
  24. const char FW_kPlatformNewLineChar = '\r';
  25. #endif
  26. #ifdef FW_BUILD_WIN
  27. const char FW_kPlatformNewLineChar = '\n';
  28. #endif
  29.  
  30. #endif
  31.  
  32.